Use Class to target specific elements

CSS

Created: 2022-10-02


Add a class to your HTML element

<p class="special">Hello</p>

Then target that class

.special {
  color: orange;
}

Target all elements that has a class "special"

p.special {
  color: orange;
}

Target ONLY li element that has a class "special"